home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 6_4.lha / 6_4 / makefile < prev    next >
Makefile  |  1993-08-08  |  264b  |  18 lines

  1. C= CC -I. -I../../CC
  2. FLAGS=
  3. RROR= ../../error.o
  4.  
  5. ll: tst1
  6.  
  7. st1: tst1.c 6_4.h makefile
  8. $(CC) $(CFLAGS) tst1.c -o tst1 $(ERROR)
  9.  
  10. MP= tst1.cmp
  11. UT= tst1.out
  12.  
  13. st1.out: tst1 tst.in ;    tst1 < tst.in > tst1.out
  14.  
  15. est: all $(OUT) $(CMP)
  16. cmp tst1.out tst1.cmp
  17. echo tests done
  18.